home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 May / PCWMAY06.iso / Software / Freeware / First Page 2006 3.00 / fp2006-final-3.00-setup.exe / {app} / Iscripts / Forms Misc / email-domain.izs < prev    next >
Text File  |  2005-09-28  |  2KB  |  103 lines

  1. <!NOWIZARD>
  2.  
  3. <!TITLE>Email Domain
  4. <!/TITLE>
  5.  
  6. <!DESCRIPTION>Takes an email address and returns just the domain - the stuff after the "@" sign. We've put it together with a simple WHOIS query<!/DESCRIPTION> 
  7.  
  8. <!CATEGORY>Forms<!/CATEGORY>
  9.  
  10. <!SCRIPT>
  11. <!-- START OF SCRIPT -->
  12.  
  13.  
  14. <!-- HOW TO INSTALL EMAIL DOMAIN:
  15.  
  16.   1.  Copy code into the HEAD section of document
  17.   2.  Put last coding into the BODY section of document  -->
  18.  
  19. <!-- STEP ONE: Add code into HEAD section of document  -->
  20.  
  21. <SCRIPT LANGUAGE="JavaScript">
  22.  
  23.  
  24. <!-- Begin
  25. function stripEmail(Email){
  26. var atsign = Email.substring(0,Email.lastIndexOf('@')+1);
  27.  
  28. var domain = Email.substring(atsign.length,Email.length+1);
  29. var page = "http://www.networksolutions.com/cgi-bin/whois/whois?STRING=" + domain;
  30.  
  31. window.location=page;
  32. }
  33. // End -->
  34. </SCRIPT>
  35.  
  36. <!-- STEP TWO: Add code into BODY section of document  -->
  37.  
  38. <form>
  39. <center>
  40. <table border="0" cellpadding="2" cellspacing="0">
  41. <tr>
  42. <td><strong>Email: </strong></td>
  43. <td><input type=text name=email value="spam@geocities.com"></td>
  44. </tr>
  45. <tr>
  46. <td colspan=2 align=center>
  47. <input type=button value="WHOIS Query" onClick="stripEmail(email.value)"></td>
  48. </tr>
  49. </table>
  50. </center>
  51. </form>
  52.  
  53. <!-- END OF SCRIPT -->
  54. <!/SCRIPT>
  55.  
  56. <!PREVIEW>
  57. <!-- START OF SCRIPT -->
  58.  
  59.  
  60. <!-- HOW TO INSTALL EMAIL DOMAIN:
  61.  
  62.   1.  Copy code into the HEAD section of document
  63.   2.  Put last coding into the BODY section of document  -->
  64.  
  65. <!-- STEP ONE: Add code into HEAD section of document  -->
  66.  
  67. <SCRIPT LANGUAGE="JavaScript">
  68.  
  69.  
  70. <!-- Begin
  71. function stripEmail(Email){
  72. var atsign = Email.substring(0,Email.lastIndexOf('@')+1);
  73.  
  74. var domain = Email.substring(atsign.length,Email.length+1);
  75. var page = "http://www.networksolutions.com/cgi-bin/whois/whois?STRING=" + domain;
  76.  
  77. window.location=page;
  78. }
  79. // End -->
  80. </SCRIPT>
  81.  
  82. <!-- STEP TWO: Add code into BODY section of document  -->
  83.  
  84. <form>
  85. <center>
  86. <table border="0" cellpadding="2" cellspacing="0">
  87. <tr>
  88. <td><strong>Email: </strong></td>
  89. <td><input type=text name=email value="spam@geocities.com"></td>
  90. </tr>
  91. <tr>
  92. <td colspan=2 align=center>
  93. <input type=button value="WHOIS Query" onClick="stripEmail(email.value)"></td>
  94. </tr>
  95. </table>
  96. </center>
  97. </form>
  98.  
  99. <!-- END OF SCRIPT -->
  100. <!/PREVIEW>
  101.  
  102. <!RELATED>NONE<!/RELATED>
  103.